home *** CD-ROM | disk | FTP | other *** search
Winamp Compiled Maki Script | 2002-07-03 | 979 b | 27 lines |
- /* Note: a decompiler is no invitation to steal code.
- Please respect the the copyright */
-
- #include "std.mi"
- Global GuiObject GuiObject2;
- Global Group Group3;
-
-
- System.onScriptLoaded()
- {
- Group3 = System.getScriptGroup();
- GuiObject2 = Group3.getObject(System.getParam());
- return Null;
- }
-
- Group3.onResize(int x, int y, int w, int h)
- {
- Int Int9;
- Int Int8;
- Int8 = GuiObject2.getWidth();
- Int9 = GuiObject2.getHeight();
- GuiObject2.resize(( ( w - Int8) / 2), ( ( h - Int9) / 2), Int8, Int9);
- return Null;
- }
-
-
-